encoding/binary.littleEndian.Uint64 (method, view implemented interface methods)

110 uses

	encoding/binary (current package)
		binary.go#L115: func (littleEndian) Uint64(b []byte) uint64 {

	github.com/andybalholm/brotli
		compress_fragment.go#L22: 	var h uint64 = (binary.LittleEndian.Uint64(p) << 24) * uint64(kHashMul32)
		compress_fragment.go#L664: 					var input_bytes uint64 = binary.LittleEndian.Uint64(in[ip-3:])
		compress_fragment.go#L701: 					var input_bytes uint64 = binary.LittleEndian.Uint64(in[ip-3:])
		compress_fragment_two_pass.go#L20: 	var h uint64 = (binary.LittleEndian.Uint64(p) << ((8 - length) * 8)) * uint64(kHashMul32)
		compress_fragment_two_pass.go#L367: 						input_bytes = binary.LittleEndian.Uint64(input[ip-3:])
		compress_fragment_two_pass.go#L376: 						input_bytes = binary.LittleEndian.Uint64(input[ip-5:])
		compress_fragment_two_pass.go#L383: 						input_bytes = binary.LittleEndian.Uint64(input[ip-2:])
		compress_fragment_two_pass.go#L420: 						input_bytes = binary.LittleEndian.Uint64(input[ip-3:])
		compress_fragment_two_pass.go#L429: 						input_bytes = binary.LittleEndian.Uint64(input[ip-5:])
		compress_fragment_two_pass.go#L436: 						input_bytes = binary.LittleEndian.Uint64(input[ip-2:])
		find_match_length.go#L23: 			w1 := binary.LittleEndian.Uint64(s1[matched:])
		find_match_length.go#L24: 			w2 := binary.LittleEndian.Uint64(s2[matched:])
		h6.go#L27: 	var h uint64 = (binary.LittleEndian.Uint64(data) & mask) * kHashMul64Long
		hash_longest_match_quickly.go#L27: 	var hash uint64 = ((binary.LittleEndian.Uint64(data) << (64 - 8*h.hashLen)) * kHashMul64)

	github.com/andybalholm/brotli/matchfinder
		bargain1.go#L141: 		cv := binary.LittleEndian.Uint64(src[i:])
		bargain2.go#L152: 		cv := binary.LittleEndian.Uint64(src[i:])
		bargain3.go#L158: 		cv := binary.LittleEndian.Uint64(src[i:])
		m0.go#L67: 	nextHash := m.hash(binary.LittleEndian.Uint64(src[s:]))
		m0.go#L99: 			nextHash = m.hash(binary.LittleEndian.Uint64(src[nextS:]))
		m0.go#L115: 			h := m.hash(binary.LittleEndian.Uint64(src[newBase:]))
		m0.go#L149: 				x := binary.LittleEndian.Uint64(src[i:])
		m0.go#L154: 			x := binary.LittleEndian.Uint64(src[base+1:])
		m0.go#L160: 		x := binary.LittleEndian.Uint64(src[s-3:])
		m4.go#L141: 		h := ((binary.LittleEndian.Uint64(src[i:]) & (1<<(8*q.HashLen) - 1)) * hashMul64) >> (64 - q.TableBits)
		m4.go#L299: 			iBytes := binary.LittleEndian.Uint64(src[i:])
		m4.go#L300: 			jBytes := binary.LittleEndian.Uint64(src[j:])
		pathfinder.go#L128: 		h := ((binary.LittleEndian.Uint64(src[i:]) & (1<<(8*q.HashLen) - 1)) * hashMul64) >> (64 - q.TableBits)
		trio.go#L92: 		cv := binary.LittleEndian.Uint64(src[s:])
		trio.go#L146: 			cv = binary.LittleEndian.Uint64(src[s:])
		trio.go#L152: 			cv := binary.LittleEndian.Uint64(src[s+1:])
		trio.go#L190: 				cv0 := binary.LittleEndian.Uint64(src[index0:])
		trio.go#L199: 			cv = binary.LittleEndian.Uint64(src[s:])
		trio.go#L283: 			cv0 := binary.LittleEndian.Uint64(src[index0:])
		zdfast.go#L89: 	cv := binary.LittleEndian.Uint64(src[s:])
		zdfast.go#L129: 				cv = binary.LittleEndian.Uint64(src[s:])
		zdfast.go#L149: 				cv := binary.LittleEndian.Uint64(src[s+1:])
		zdfast.go#L173: 			cv = binary.LittleEndian.Uint64(src[s:])
		zdfast.go#L202: 		cv0 := binary.LittleEndian.Uint64(src[index0:])
		zdfast.go#L203: 		cv1 := binary.LittleEndian.Uint64(src[index1:])
		zdfast.go#L217: 		cv = binary.LittleEndian.Uint64(src[s:])
		zdfast.go#L239: 			cv = binary.LittleEndian.Uint64(src[s:])
		zfast.go#L86: 	cv := binary.LittleEndian.Uint64(src[s:])
		zfast.go#L123: 				cv = binary.LittleEndian.Uint64(src[s:])
		zfast.go#L148: 			cv = binary.LittleEndian.Uint64(src[s:])
		zfast.go#L172: 		cv = binary.LittleEndian.Uint64(src[s:])
		zfast.go#L191: 			cv = binary.LittleEndian.Uint64(src[s:])
		zm.go#L87: 		cv := binary.LittleEndian.Uint64(src[s:])
		zm.go#L123: 				cv := binary.LittleEndian.Uint64(src[s+1:])
		zm.go#L145: 			cv = binary.LittleEndian.Uint64(src[s:])
		zm.go#L153: 		cv0 := binary.LittleEndian.Uint64(src[index0:])
		zm.go#L169: 			cv = binary.LittleEndian.Uint64(src[s:])
		zm.go#L190: 				cv := binary.LittleEndian.Uint64(src[s+1:])
		zm.go#L262: 			cv1 := binary.LittleEndian.Uint64(src[index1:])

	github.com/cespare/xxhash/v2
		xxhash.go#L219: func u64(b []byte) uint64 { return binary.LittleEndian.Uint64(b) }

	github.com/coder/websocket
		mask.go#L28: 			v := binary.LittleEndian.Uint64(b)
		mask.go#L30: 			v = binary.LittleEndian.Uint64(b[8:16])
		mask.go#L32: 			v = binary.LittleEndian.Uint64(b[16:24])
		mask.go#L34: 			v = binary.LittleEndian.Uint64(b[24:32])
		mask.go#L36: 			v = binary.LittleEndian.Uint64(b[32:40])
		mask.go#L38: 			v = binary.LittleEndian.Uint64(b[40:48])
		mask.go#L40: 			v = binary.LittleEndian.Uint64(b[48:56])
		mask.go#L42: 			v = binary.LittleEndian.Uint64(b[56:64])
		mask.go#L44: 			v = binary.LittleEndian.Uint64(b[64:72])
		mask.go#L46: 			v = binary.LittleEndian.Uint64(b[72:80])
		mask.go#L48: 			v = binary.LittleEndian.Uint64(b[80:88])
		mask.go#L50: 			v = binary.LittleEndian.Uint64(b[88:96])
		mask.go#L52: 			v = binary.LittleEndian.Uint64(b[96:104])
		mask.go#L54: 			v = binary.LittleEndian.Uint64(b[104:112])
		mask.go#L56: 			v = binary.LittleEndian.Uint64(b[112:120])
		mask.go#L58: 			v = binary.LittleEndian.Uint64(b[120:128])
		mask.go#L65: 			v := binary.LittleEndian.Uint64(b)
		mask.go#L67: 			v = binary.LittleEndian.Uint64(b[8:16])
		mask.go#L69: 			v = binary.LittleEndian.Uint64(b[16:24])
		mask.go#L71: 			v = binary.LittleEndian.Uint64(b[24:32])
		mask.go#L73: 			v = binary.LittleEndian.Uint64(b[32:40])
		mask.go#L75: 			v = binary.LittleEndian.Uint64(b[40:48])
		mask.go#L77: 			v = binary.LittleEndian.Uint64(b[48:56])
		mask.go#L79: 			v = binary.LittleEndian.Uint64(b[56:64])
		mask.go#L86: 			v := binary.LittleEndian.Uint64(b)
		mask.go#L88: 			v = binary.LittleEndian.Uint64(b[8:16])
		mask.go#L90: 			v = binary.LittleEndian.Uint64(b[16:24])
		mask.go#L92: 			v = binary.LittleEndian.Uint64(b[24:32])
		mask.go#L99: 			v := binary.LittleEndian.Uint64(b)
		mask.go#L101: 			v = binary.LittleEndian.Uint64(b[8:16])
		mask.go#L108: 			v := binary.LittleEndian.Uint64(b)

	github.com/gotd/td/bin
		decode.go#L51: 	v := binary.LittleEndian.Uint64(b.Buf)

	github.com/gotd/td/crypto
		key.go#L115: 	return int64(binary.LittleEndian.Uint64(a.ID[:]))
		rsa_fingerprint.go#L26: 	return int64(binary.LittleEndian.Uint64(result))
		salt.go#L16: 	return int64(binary.LittleEndian.Uint64(serverSalt[:]))
		session_id.go#L16: 	return int64(binary.LittleEndian.Uint64(bytes)), nil

	github.com/klauspost/compress/fse
		bitreader.go#L104: 	b.value = binary.LittleEndian.Uint64(b.in[b.off-8:])

	github.com/klauspost/compress/zstd/internal/xxhash
		xxhash.go#L206: func u64(b []byte) uint64 { return binary.LittleEndian.Uint64(b) }

	golang.org/x/crypto/internal/poly1305
		sum_generic.go#L107: 	m.r[0] = binary.LittleEndian.Uint64(key[0:8]) & rMask0
		sum_generic.go#L108: 	m.r[1] = binary.LittleEndian.Uint64(key[8:16]) & rMask1
		sum_generic.go#L109: 	m.s[0] = binary.LittleEndian.Uint64(key[16:24])
		sum_generic.go#L110: 	m.s[1] = binary.LittleEndian.Uint64(key[24:32])
		sum_generic.go#L161: 			h0, c = bits.Add64(h0, binary.LittleEndian.Uint64(msg[0:8]), 0)
		sum_generic.go#L162: 			h1, c = bits.Add64(h1, binary.LittleEndian.Uint64(msg[8:16]), c)
		sum_generic.go#L171: 			h0, c = bits.Add64(h0, binary.LittleEndian.Uint64(buf[0:8]), 0)
		sum_generic.go#L172: 			h1, c = bits.Add64(h1, binary.LittleEndian.Uint64(buf[8:16]), c)

	golang.org/x/crypto/sha3
		legacy_hash.go#L111: 			a[i] = binary.LittleEndian.Uint64(d.a[i*8:])

	vendor/golang.org/x/crypto/internal/poly1305
		sum_generic.go#L107: 	m.r[0] = binary.LittleEndian.Uint64(key[0:8]) & rMask0
		sum_generic.go#L108: 	m.r[1] = binary.LittleEndian.Uint64(key[8:16]) & rMask1
		sum_generic.go#L109: 	m.s[0] = binary.LittleEndian.Uint64(key[16:24])
		sum_generic.go#L110: 	m.s[1] = binary.LittleEndian.Uint64(key[24:32])
		sum_generic.go#L161: 			h0, c = bits.Add64(h0, binary.LittleEndian.Uint64(msg[0:8]), 0)
		sum_generic.go#L162: 			h1, c = bits.Add64(h1, binary.LittleEndian.Uint64(msg[8:16]), c)
		sum_generic.go#L171: 			h0, c = bits.Add64(h0, binary.LittleEndian.Uint64(buf[0:8]), 0)
		sum_generic.go#L172: 			h1, c = bits.Add64(h1, binary.LittleEndian.Uint64(buf[8:16]), c)